home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’90 / Surovell Stuffƒ / GeeWhizƒ / CPlusCovers.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-17  |  552 b   |  42 lines  |  [TEXT/KAHL]

  1. /*
  2.     Copyright © 1989,1990 by Succinct Systems
  3.  
  4.     433 Huronview
  5.     Ann Arbor, MI 48103
  6.     (313) 663-4903
  7.  
  8.     File:         CPlusCovers.h
  9.     Model:         THINK C 4.0, MPW C 3.0
  10.  
  11.     ABSTRACT:
  12.         basic C++ conversion symbology
  13.  
  14.     NOTES:
  15.         none yet.
  16.  
  17.     KNOWN BUGS:
  18.         none yet.
  19.  
  20.     HISTORY:
  21.         DAS 15-Dec-89    created this file    (David A. Surovell)
  22.         DAS 05-Apr-90    put file to work
  23. */
  24.  
  25. #define    _H_CPlusCovers
  26.  
  27. #ifdef THINK_C
  28.  
  29. #ifndef const
  30. #define const
  31. #endif const
  32.  
  33. #define class            struct
  34.  
  35. #define public
  36. #define private
  37. #define protected
  38. #define friend
  39. #define virtual
  40.  
  41. #endif THINK_C
  42.